home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / byteibm.arc / HOGAN.ARC / LISTING2.TXT < prev    next >
Text File  |  1985-07-12  |  264b  |  20 lines

  1. POP_REGS MACRO REG1, REG2, REG3, REG4
  2.  
  3.         POP BP
  4.  
  5.         IFNB <REG4>
  6.         POP REG4
  7.         ENDIF
  8.  
  9.         IFNB <REG3>
  10.         POP REG3
  11.         ENDIF
  12.  
  13.         IFNB <REG2>
  14.         POP REG2
  15.         ENDIF
  16.  
  17.         POP REG1
  18.  
  19.         ENDM
  20.